home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / gfx / 3d / irit50src.lha / irit5 / include / extra_fn.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  690 b   |  22 lines

  1. /*****************************************************************************
  2. *   "Irit" - the 3d polygonal solid modeller.                     *
  3. ******************************************************************************
  4. * Extra functions from external, public domain, sources.             *
  5. *****************************************************************************/
  6.  
  7. #ifndef    EXTRA_FN_H
  8. #define    EXTRA_FN_H
  9.  
  10. #if defined(__cplusplus) || defined(c_plusplus)
  11. extern "C" {
  12. #endif
  13.  
  14. void SvdLeastSqr(RealType *A, RealType *x, RealType *b, int NData, int Nx);
  15. void BzrCrvInterp(RealType *Result, RealType *Input, int Size);
  16.  
  17. #if defined(__cplusplus) || defined(c_plusplus)
  18. }
  19. #endif
  20.  
  21. #endif /* EXTRA_FN_H */
  22.